home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / hf.dir / 00017_HyperText Handlers.ls < prev    next >
Encoding:
Text File  |  1996-04-19  |  1.4 KB  |  53 lines

  1. global gHFHotLinks, gHFstate, gHFAthleteMode
  2.  
  3. on InitHotLinks
  4.   if voidp(gHFHotLinks) then
  5.     set gHFHotLinks to [:]
  6.     repeat with vI = 1 to the number of lines in field "HotLinks"
  7.       set vLink to item 1 of line vI of field "HotLinks"
  8.       set vAth to item 2 of line vI of field "HotLinks"
  9.       addProp(gHFHotLinks, vLink, vAth)
  10.     end repeat
  11.   end if
  12. end
  13.  
  14. on CheckHotLink aCast, aWord
  15.   if aWord = -1 then
  16.     return 
  17.   end if
  18.   if the foreColor of word aWord of field aCast <> 113 then
  19.     put "Duckz"
  20.     return 
  21.   end if
  22.   set vFirstWord to aWord
  23.   repeat while (vFirstWord > 1) and (the foreColor of word vFirstWord - 1 of field aCast = 113)
  24.     set vFirstWord to vFirstWord - 1
  25.     if word vFirstWord - 1 of field aCast contains "," then
  26.       exit repeat
  27.     end if
  28.   end repeat
  29.   set vCurrWord to vFirstWord
  30.   set vHotText to EMPTY
  31.   repeat while the foreColor of word vCurrWord of field aCast = 113
  32.     set vHotText to vHotText & word vCurrWord of field aCast
  33.     set vCurrWord to vCurrWord + 1
  34.     if word vCurrWord - 1 of field aCast contains "," then
  35.       exit repeat
  36.     end if
  37.   end repeat
  38.   set vHotText to StripChars(vHotText, ",.'()-" & QUOTE)
  39.   DoHotLink(vHotText)
  40. end
  41.  
  42. on DoHotLink aText
  43.   put "Duck1" && aText
  44.   if not voidp(findPos(gHFHotLinks, aText)) then
  45.     if not gHFAthleteMode then
  46.       setAthleteMode(1)
  47.     end if
  48.     set gHFstate to "goto:" & getaProp(gHFHotLinks, aText)
  49.     put "Duck2" && gHFstate
  50.     athlete()
  51.   end if
  52. end
  53.